home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / thread.arc / C_COURSE.BAT next >
DOS Batch File  |  1987-05-09  |  844b  |  32 lines

  1. echo Basic preprocessor statements
  2. thread #include  #define
  3. echo Basic variables
  4. thread char escape int float double
  5. thread long unsigned  []
  6. echo Storage types
  7. thread auto register extern static
  8. echo The soul of C
  9. thread function
  10. echo Flow of control
  11. thread if else do while for switch case break continue
  12. echo Operators
  13. thread precedence
  14. thread + - / * += -= *=
  15. thread ++ --
  16. echo Logical operators
  17. thread "==" != !
  18. thread && "||" "|" & ?:
  19. thread ">" "<" ">=" "<="
  20. echo Pointers and structures
  21. thread pointers * &
  22. thread struct . "->"
  23. echo Command line arguments
  24. thread argc argv
  25. echo Input - Output
  26. thread getc getchar putchar printf scanf fscanf
  27. echo Standard library
  28. thread strlen strcpy strcmp  atoi
  29. echo Dynamic memory
  30. thread malloc calloc () sizeof
  31. echo Preprocessor II
  32. thread #ifdef #undef #endif isalpha